home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / Macintosh Tracker 1.20 / source / Server⁄Tracker 4.0 / prefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-01  |  881 b   |  31 lines  |  [TEXT/KAHL]

  1. /* prefs.h */
  2.  
  3. /* $Id: prefs.h,v 4.0 1994/01/11 17:54:52 espie Exp espie $
  4.  * $Log: prefs.h,v $
  5.  * Revision 4.0  1994/01/11  17:54:52  espie
  6.  * *** empty log message ***
  7.  *
  8.  * Revision 1.1  1994/01/06  22:32:42  Espie
  9.  * Initial revision
  10.  *
  11.  */
  12.  
  13. #define BASE_PREFS      50
  14. #define PREF_TYPE       BASE_PREFS
  15. #define PREF_SPEED      (BASE_PREFS+1)
  16. #define PREF_TOLERATE   (BASE_PREFS+2)
  17. #define PREF_REPEATS    (BASE_PREFS+3)
  18. #define PREF_IMASK      (BASE_PREFS+4)
  19. #define PREF_BCDVOL     (BASE_PREFS+5)
  20. #define PREF_DUMP       (BASE_PREFS+6)
  21. #define PREF_SYNC       (BASE_PREFS+7)
  22. #define PREF_SHOW       (BASE_PREFS+8)
  23.  
  24. #define NUMBER_PREFS    (PREF_SHOW - BASE_PREFS + 1)
  25.  
  26. XT VALUE get_pref P((int index));
  27. XT void set_pref P((int index, VALUE value));
  28. XT int get_pref_scalar P((int index));
  29. XT void set_pref_scalar P((int index, int value));
  30. XT struct tag *get_prefs P((void));
  31.